-
Notifications
You must be signed in to change notification settings - Fork 2
/
w.json
22282 lines (22282 loc) · 688 KB
/
w.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"word": "Was",
"type": "imp.",
"definition": "of Be"
},
{
"word": "Went",
"type": "imp.",
"definition": "of Go"
},
{
"word": "women",
"type": "pl. ",
"definition": "of Herdswoman"
},
{
"word": "We",
"type": "pl. ",
"definition": "of I"
},
{
"word": "Waag",
"type": "n.",
"definition": "The grivet."
},
{
"word": "Waahoo",
"type": "n.",
"definition": "The burning bush; -- said to be called after a quack\n medicine made from it."
},
{
"word": "Wabble",
"type": "v. i.",
"definition": "To move staggeringly or unsteadily from one side to the\n other; to vacillate; to move the manner of a rotating disk when the\n axis of rotation is inclined to that of the disk; -- said of a turning\n or whirling body; as, a top wabbles; a buzz saw wabbles."
},
{
"word": "Wabble",
"type": "n.",
"definition": "A hobbling, unequal motion, as of a wheel unevenly hung; a\n staggering to and fro."
},
{
"word": "Wabbly",
"type": "a.",
"definition": "Inclined to wabble; wabbling."
},
{
"word": "Wacke",
"type": "n.",
"definition": "Alt. of Wacky"
},
{
"word": "Wacky",
"type": "n.",
"definition": "A soft, earthy, dark-colored rock or clay derived from the\n alteration of basalt."
},
{
"word": "Wad",
"type": "n.",
"definition": "Woad."
},
{
"word": "Wad",
"type": "n.",
"definition": "A little mass, tuft, or bundle, as of hay or tow."
},
{
"word": "Wad",
"type": "n.",
"definition": "Specifically: A little mass of some soft or flexible material,\n such as hay, straw, tow, paper, or old rope yarn, used for retaining a\n charge of powder in a gun, or for keeping the powder and shot close;\n also, to diminish or avoid the effects of windage. Also, by extension,\n a dusk of felt, pasteboard, etc., serving a similar purpose."
},
{
"word": "Wad",
"type": "n.",
"definition": "A soft mass, especially of some loose, fibrous substance, used\n for various purposes, as for stopping an aperture, padding a garment,\n etc."
},
{
"word": "Waded",
"type": "imp. & p. p.",
"definition": "of Wad"
},
{
"word": "Wadding",
"type": "p. pr. & vb. n.",
"definition": "of Wad"
},
{
"word": "Wad",
"type": "v. t.",
"definition": "To form into a mass, or wad, or into wadding; as, to wad\n tow or cotton."
},
{
"word": "Wad",
"type": "v. t.",
"definition": "To insert or crowd a wad into; as, to wad a gun; also, to\n stuff or line with some soft substance, or wadding, like cotton; as, to\n wad a cloak."
},
{
"word": "Wad",
"type": "n.",
"definition": "Alt. of Wadd"
},
{
"word": "Wadd",
"type": "n.",
"definition": "An earthy oxide of manganese, or mixture of different oxides\n and water, with some oxide of iron, and often silica, alumina, lime, or\n baryta; black ocher. There are several varieties."
},
{
"word": "Wadd",
"type": "n.",
"definition": "Plumbago, or black lead."
},
{
"word": "Wadding",
"type": "n.",
"definition": "A wad, or the materials for wads; any pliable substance of\n which wads may be made."
},
{
"word": "Wadding",
"type": "n.",
"definition": "Any soft stuff of loose texture, used for stuffing or\n padding garments; esp., sheets of carded cotton prepared for the\n purpose."
},
{
"word": "Waddled",
"type": "imp. & p. p.",
"definition": "of Waddle"
},
{
"word": "Waddling",
"type": "p. pr. & vb. n.",
"definition": "of Waddle"
},
{
"word": "Waddle",
"type": "v. i.",
"definition": "To walk with short steps, swaying the body from one side\n to the other, like a duck or very fat person; to move clumsily and\n totteringly along; to toddle; to stumble; as, a child waddles when he\n begins to walk; a goose waddles."
},
{
"word": "Waddle",
"type": "v. t.",
"definition": "To trample or tread down, as high grass, by walking\n through it."
},
{
"word": "Waddler",
"type": "n.",
"definition": "One who, or that which, waddles."
},
{
"word": "Waddlingly",
"type": "adv.",
"definition": "In a waddling manner."
},
{
"word": "Wade",
"type": "n.",
"definition": "Woad."
},
{
"word": "Waded",
"type": "imp. & p. p.",
"definition": "of Wade"
},
{
"word": "Wading",
"type": "p. pr. & vb. n.",
"definition": "of Wade"
},
{
"word": "Wade",
"type": "v. i.",
"definition": "To go; to move forward."
},
{
"word": "Wade",
"type": "v. i.",
"definition": "To walk in a substance that yields to the feet; to move,\n sinking at each step, as in water, mud, sand, etc."
},
{
"word": "Wade",
"type": "v. i.",
"definition": "Hence, to move with difficulty or labor; to proceed \/lowly\n among objects or circumstances that constantly \/inder or embarrass; as,\n to wade through a dull book."
},
{
"word": "Wade",
"type": "v. t.",
"definition": "To pass or cross by wading; as, he waded \/he rivers and\n swamps."
},
{
"word": "Wade",
"type": "n.",
"definition": "The act of wading."
},
{
"word": "Wader",
"type": "n.",
"definition": "One who, or that which, wades."
},
{
"word": "Wader",
"type": "n.",
"definition": "Any long-legged bird that wades in the water in search of\n food, especially any species of limicoline or grallatorial birds; --\n called also wading bird. See Illust. g, under Aves."
},
{
"word": "Wading",
"type": "",
"definition": "a. & n. from Wade, v."
},
{
"word": "Wadmol",
"type": "n.",
"definition": "A coarse, hairy, woolen cloth, formerly used for garments\n by the poor, and for various other purposes."
},
{
"word": "Wadset",
"type": "n.",
"definition": "A kind of pledge or mortgage."
},
{
"word": "Wadsetter",
"type": "n.",
"definition": "One who holds by a wadset."
},
{
"word": "Wadies",
"type": "pl. ",
"definition": "of Wady"
},
{
"word": "Wady",
"type": "n.",
"definition": "A ravine through which a brook flows; the channel of a water\n course, which is dry except in the rainy season."
},
{
"word": "Wae",
"type": "n.",
"definition": "A wave."
},
{
"word": "Waeg",
"type": "n.",
"definition": "The kittiwake."
},
{
"word": "Wafer",
"type": "n.",
"definition": "A thin cake made of flour and other ingredients."
},
{
"word": "Wafer",
"type": "n.",
"definition": "A thin cake or piece of bread (commonly unleavened,\n circular, and stamped with a crucifix or with the sacred monogram) used\n in the Eucharist, as in the Roman Catholic Church."
},
{
"word": "Wafer",
"type": "n.",
"definition": "An adhesive disk of dried paste, made of flour, gelatin,\n isinglass, or the like, and coloring matter, -- used in sealing letters\n and other documents."
},
{
"word": "Wafered",
"type": "imp. & p. p.",
"definition": "of Wafer"
},
{
"word": "Wafering",
"type": "p. pr. & vb. n.",
"definition": "of Wafer"
},
{
"word": "Wafer",
"type": "v. t.",
"definition": "To seal or close with a wafer."
},
{
"word": "Waferer",
"type": "n.",
"definition": "A dealer in the cakes called wafers; a confectioner."
},
{
"word": "Waffle",
"type": "n.",
"definition": "A thin cake baked and then rolled; a wafer."
},
{
"word": "Waffle",
"type": "n.",
"definition": "A soft indented cake cooked in a waffle iron."
},
{
"word": "Wafted",
"type": "imp. & p. p.",
"definition": "of Waft"
},
{
"word": "Wafting",
"type": "p. pr. & vb. n.",
"definition": "of Waft"
},
{
"word": "Waft",
"type": "v. t.",
"definition": "To give notice to by waving something; to wave the hand\n to; to beckon."
},
{
"word": "Waft",
"type": "v. t.",
"definition": "To cause to move or go in a wavy manner, or by the impulse\n of waves, as of water or air; to bear along on a buoyant medium; as, a\n balloon was wafted over the channel."
},
{
"word": "Waft",
"type": "v. t.",
"definition": "To cause to float; to keep from sinking; to buoy."
},
{
"word": "Waft",
"type": "v. i.",
"definition": "To be moved, or to pass, on a buoyant medium; to float."
},
{
"word": "Waft",
"type": "n.",
"definition": "A wave or current of wind."
},
{
"word": "Waft",
"type": "n.",
"definition": "A signal made by waving something, as a flag, in the air."
},
{
"word": "Waft",
"type": "n.",
"definition": "An unpleasant flavor."
},
{
"word": "Waft",
"type": "n.",
"definition": "A knot, or stop, in the middle of a flag."
},
{
"word": "Waftage",
"type": "n.",
"definition": "Conveyance on a buoyant medium, as air or water."
},
{
"word": "Wafter",
"type": "n.",
"definition": "One who, or that which, wafts."
},
{
"word": "Wafter",
"type": "n.",
"definition": "A boat for passage."
},
{
"word": "Wafture",
"type": "n.",
"definition": "The act of waving; a wavelike motion; a waft."
},
{
"word": "Wagged",
"type": "imp. & p. p.",
"definition": "of Wag"
},
{
"word": "Wagging",
"type": "p. pr. & vb. n.",
"definition": "of Wag"
},
{
"word": "Wag",
"type": "v. t.",
"definition": "To move one way and the other with quick turns; to shake to\n and fro; to move vibratingly; to cause to vibrate, as a part of the\n body; as, to wag the head."
},
{
"word": "Wag",
"type": "v. i.",
"definition": "To move one way and the other; to be shaken to and fro; to\n vibrate."
},
{
"word": "Wag",
"type": "v. i.",
"definition": "To be in action or motion; to move; to get along; to\n progress; to stir."
},
{
"word": "Wag",
"type": "v. i.",
"definition": "To go; to depart; to pack oft."
},
{
"word": "Wag",
"type": "v.",
"definition": "The act of wagging; a shake; as, a wag of the head."
},
{
"word": "Wag",
"type": "v.",
"definition": "A man full of sport and humor; a ludicrous fellow; a humorist;\n a wit; a joker."
},
{
"word": "Wagati",
"type": "n.",
"definition": "A small East Indian wild cat (Felis wagati), regarded by\n some as a variety of the leopard cat."
},
{
"word": "Waged",
"type": "imp. & p. p.",
"definition": "of Wage"
},
{
"word": "Waging",
"type": "p. pr. & vb. n.",
"definition": "of Wage"
},
{
"word": "Wage",
"type": "v. t.",
"definition": "To pledge; to hazard on the event of a contest; to stake;\n to bet, to lay; to wager; as, to wage a dollar."
},
{
"word": "Wage",
"type": "v. t.",
"definition": "To expose one's self to, as a risk; to incur, as a danger;\n to venture; to hazard."
},
{
"word": "Wage",
"type": "v. t.",
"definition": "To engage in, as a contest, as if by previous gage or\n pledge; to carry on, as a war."
},
{
"word": "Wage",
"type": "v. t.",
"definition": "To adventure, or lay out, for hire or reward; to hire out."
},
{
"word": "Wage",
"type": "v. t.",
"definition": "To put upon wages; to hire; to employ; to pay wages to."
},
{
"word": "Wage",
"type": "v. t.",
"definition": "To give security for the performance of."
},
{
"word": "Wage",
"type": "v. i.",
"definition": "To bind one's self; to engage."
},
{
"word": "Wage",
"type": "v. t.",
"definition": "That which is staked or ventured; that for which one\n incurs risk or danger; prize; gage."
},
{
"word": "Wage",
"type": "v. t.",
"definition": "That for which one labors; meed; reward; stipulated\n payment for service performed; hire; pay; compensation; -- at present\n generally used in the plural. See Wages."
},
{
"word": "Wagel",
"type": "n.",
"definition": "See Waggel."
},
{
"word": "Wagenboom",
"type": "n.",
"definition": "A south African proteaceous tree (Protea grandiflora);\n also, its tough wood, used for making wagon wheels."
},
{
"word": "Wager",
"type": "v. t.",
"definition": "Something deposited, laid, or hazarded on the event of a\n contest or an unsettled question; a bet; a stake; a pledge."
},
{
"word": "Wager",
"type": "v. t.",
"definition": "A contract by which two parties or more agree that a\n certain sum of money, or other thing, shall be paid or delivered to one\n of them, on the happening or not happening of an uncertain event."
},
{
"word": "Wager",
"type": "v. t.",
"definition": "That on which bets are laid; the subject of a bet."
},
{
"word": "Wagered",
"type": "imp. & p. p.",
"definition": "of Wager"
},
{
"word": "Wagering",
"type": "p. pr. & vb. n.",
"definition": "of Wager"
},
{
"word": "Wager",
"type": "v. t.",
"definition": "To hazard on the issue of a contest, or on some question\n that is to be decided, or on some casualty; to lay; to stake; to bet."
},
{
"word": "Wager",
"type": "v. i.",
"definition": "To make a bet; to lay a wager."
},
{
"word": "Wagerer",
"type": "n.",
"definition": "One who wagers, or lays a bet."
},
{
"word": "Wagering",
"type": "a.",
"definition": "Hazarding; pertaining to the act of one who wagers."
},
{
"word": "Wages",
"type": "n.",
"definition": "A compensation given to a hired person for services; price\n paid for labor; recompense; hire. See Wage, n., 2."
},
{
"word": "Waggel",
"type": "n.",
"definition": "The young of the great black-backed gull (Larus marinus),\n formerly considered a distinct species."
},
{
"word": "Waggeries",
"type": "pl. ",
"definition": "of Waggery"
},
{
"word": "Waggery",
"type": "n.",
"definition": "The manner or action of a wag; mischievous merriment;\n sportive trick or gayety; good-humored sarcasm; pleasantry; jocularity;\n as, the waggery of a schoolboy."
},
{
"word": "Waggie",
"type": "n.",
"definition": "The pied wagtail."
},
{
"word": "Waggish",
"type": "a.",
"definition": "Like a wag; mischievous in sport; roguish in merriment or\n good humor; frolicsome."
},
{
"word": "Waggish",
"type": "a.",
"definition": "Done, made, or laid in waggery or for sport; sportive;\n humorous; as, a waggish trick."
},
{
"word": "Waggle",
"type": "v. i.",
"definition": "To reel, sway, or move from side to side; to move with a\n wagging motion; to waddle."
},
{
"word": "Waggled",
"type": "imp. & p. p.",
"definition": "of Waggle"
},
{
"word": "Waggling",
"type": "p. pr. & vb. n.",
"definition": "of Waggle"
},
{
"word": "Waggle",
"type": "v. t.",
"definition": "To move frequently one way and the other; to wag; as, a\n bird waggles his tail."
},
{
"word": "Wag-halter",
"type": "n.",
"definition": "One who moves or wears a halter; one likely to be\n hanged."
},
{
"word": "Wagnerite",
"type": "n.",
"definition": "A fluophosphate of magnesia, occurring in yellowish\n crystals, and also in massive forms."
},
{
"word": "Wagon",
"type": "n.",
"definition": "A wheeled carriage; a vehicle on four wheels, and usually\n drawn by horses; especially, one used for carrying freight or\n merchandise."
},
{
"word": "Wagon",
"type": "n.",
"definition": "A freight car on a railway."
},
{
"word": "Wagon",
"type": "n.",
"definition": "A chariot"
},
{
"word": "Wagon",
"type": "n.",
"definition": "The Dipper, or Charles's Wain."
},
{
"word": "Wagoned",
"type": "imp. & p. p.",
"definition": "of Wagon"
},
{
"word": "Wagoning",
"type": "p. pr. & vb. n.",
"definition": "of Wagon"
},
{
"word": "Wagon",
"type": "v. t.",
"definition": "To transport in a wagon or wagons; as, goods are wagoned\n from city to city."
},
{
"word": "Wagon",
"type": "v. i.",
"definition": "To wagon goods as a business; as, the man wagons between\n Philadelphia and its suburbs."
},
{
"word": "Wagonage",
"type": "n.",
"definition": "Money paid for carriage or conveyance in wagon."
},
{
"word": "Wagonage",
"type": "n.",
"definition": "A collection of wagons; wagons, collectively."
},
{
"word": "Wagoner",
"type": "n.",
"definition": "One who conducts a wagon; one whose business it is to\n drive a wagon."
},
{
"word": "Wagoner",
"type": "n.",
"definition": "The constellation Charles's Wain, or Ursa Major. See Ursa\n major, under Ursa."
},
{
"word": "Wagonette",
"type": "n.",
"definition": "A kind of pleasure wagon, uncovered and with seats\n extended along the sides, designed to carry six or eight persons\n besides the driver."
},
{
"word": "Wagonfuls",
"type": "pl. ",
"definition": "of Wagonful"
},
{
"word": "Wagonful",
"type": "n.",
"definition": "As much as a wagon will hold; enough to fill a wagon; a\n wagonload."
},
{
"word": "Wagon-headed",
"type": "a.",
"definition": "Having a top, or head, shaped like the top of a\n covered wagon, or resembling in section or outline an inverted U, thus\n \/; as, a wagonheaded ceiling."
},
{
"word": "Wagonload",
"type": "n.",
"definition": "Same as Wagonful."
},
{
"word": "Wagon-roofed",
"type": "a.",
"definition": "Having a roof, or top, shaped like an inverted U;\n wagon-headed."
},
{
"word": "Wagonry",
"type": "n.",
"definition": "Conveyance by means of a wagon or wagons."
},
{
"word": "Wagonwright",
"type": "n.",
"definition": "One who makes wagons."
},
{
"word": "Wagtail",
"type": "n.",
"definition": "Any one of many species of Old World singing birds\n belonging to Motacilla and several allied genera of the family\n Motacillidae. They have the habit of constantly jerking their long\n tails up and down, whence the name."
},
{
"word": "Wah",
"type": "n.",
"definition": "The panda."
},
{
"word": "Wahabee",
"type": "n.",
"definition": "A follower of Abdel Wahab (b. 1691; d. 1787), a reformer\n of Mohammedanism. His doctrines prevail particularly among the\n Bedouins, and the sect, though checked in its influence, extends to\n most parts of Arabia, and also into India."
},
{
"word": "Waid",
"type": "a.",
"definition": "Oppressed with weight; crushed; weighed down."
},
{
"word": "Waif",
"type": "n.",
"definition": "Goods found of which the owner is not known; originally, such\n goods as a pursued thief threw away to prevent being apprehended, which\n belonged to the king unless the owner made pursuit of the felon, took\n him, and brought him to justice."
},
{
"word": "Waif",
"type": "n.",
"definition": "Hence, anything found, or without an owner; that which comes\n along, as it were, by chance."
},
{
"word": "Waif",
"type": "n.",
"definition": "A wanderer; a castaway; a stray; a homeless child."
},
{
"word": "Waift",
"type": "n.",
"definition": "A waif."
},
{
"word": "Wail",
"type": "v. t.",
"definition": "To choose; to select."
},
{
"word": "Wailed",
"type": "imp. & p. p.",
"definition": "of Wail"
},
{
"word": "Wailing",
"type": "p. pr. & vb. n.",
"definition": "of Wail"
},
{
"word": "Wail",
"type": "v. t.",
"definition": "To lament; to bewail; to grieve over; as, to wail one's\n death."
},
{
"word": "Wail",
"type": "v. i.",
"definition": "To express sorrow audibly; to make mournful outcry; to\n weep."
},
{
"word": "Wail",
"type": "n.",
"definition": "Loud weeping; violent lamentation; wailing."
},
{
"word": "Wailer",
"type": "n.",
"definition": "One who wails or laments."
},
{
"word": "Waileress",
"type": "n.",
"definition": "A woman who wails."
},
{
"word": "Wailful",
"type": "a.",
"definition": "Sorrowful; mournful."
},
{
"word": "Wailingly",
"type": "adv.",
"definition": "In a wailing manner."
},
{
"word": "Wailment",
"type": "n.",
"definition": "Lamentation; loud weeping; wailing."
},
{
"word": "Waiment",
"type": "v. & n.",
"definition": "See Wayment."
},
{
"word": "Wain",
"type": "n.",
"definition": "A four-wheeled vehicle for the transportation of goods,\n produce, etc.; a wagon."
},
{
"word": "Wain",
"type": "n.",
"definition": "A chariot."
},
{
"word": "Wainable",
"type": "a.",
"definition": "Capable of being plowed or cultivated; arable; tillable."
},
{
"word": "Wainage",
"type": "n.",
"definition": "A finding of carriages, carts, etc., for the\n transportation of goods, produce, etc."
},
{
"word": "Wainage",
"type": "n.",
"definition": "See Gainage, a."
},
{
"word": "Wainbote",
"type": "n.",
"definition": "See Cartbote. See also the Note under Bote."
},
{
"word": "Wainscot",
"type": "n.",
"definition": "Oaken timber or boarding."
},
{
"word": "Wainscot",
"type": "n.",
"definition": "A wooden lining or boarding of the walls of apartments,\n usually made in panels."
},
{
"word": "Wainscot",
"type": "n.",
"definition": "Any one of numerous species of European moths of the\n family Leucanidae."
},
{
"word": "Wainscoted",
"type": "imp. & p. p.",
"definition": "of Wainscot"
},
{
"word": "Wainscoting",
"type": "p. pr. & vb. n.",
"definition": "of Wainscot"
},
{
"word": "Wainscot",
"type": "v. t.",
"definition": "To line with boards or panelwork, or as if with\n panelwork; as, to wainscot a hall."
},
{
"word": "Wainscoting",
"type": "n.",
"definition": "The act or occupation of covering or lining with\n boards in panel."
},
{
"word": "Wainscoting",
"type": "n.",
"definition": "The material used to wainscot a house, or the wainscot\n as a whole; panelwork."
},
{
"word": "Wainwright",
"type": "n.",
"definition": "Same as Wagonwright."
},
{
"word": "Wair",
"type": "n.",
"definition": "A piece of plank two yard\/ long and a foot broad."
},
{
"word": "Waist",
"type": "n.",
"definition": "That part of the human body which is immediately below the\n ribs or thorax; the small part of the body between the thorax and hips."
},
{
"word": "Waist",
"type": "n.",
"definition": "Hence, the middle part of other bodies; especially (Naut.),\n that part of a vessel's deck, bulwarks, etc., which is between the\n quarter-deck and the forecastle; the middle part of the ship."
},
{
"word": "Waist",
"type": "n.",
"definition": "A garment, or part of a garment, which covers the body from\n the neck or shoulders to the waist line."
},
{
"word": "Waist",
"type": "n.",
"definition": "A girdle or belt for the waist."
},
{
"word": "Waistband",
"type": "n.",
"definition": "The band which encompasses the waist; esp., one on the\n upper part of breeches, trousers, pantaloons, skirts, or the like."
},
{
"word": "Waistband",
"type": "n.",
"definition": "A sash worn by women around the waist."
},
{
"word": "Waistcloth",
"type": "n.",
"definition": "A cloth or wrapper worn about the waist; by extension,\n such a garment worn about the hips and passing between the thighs."
},
{
"word": "Waistcloth",
"type": "n.",
"definition": "A covering of canvas or tarpaulin for the hammocks,\n stowed on the nettings, between the quarterdeck and the forecastle."
},
{
"word": "Waistcoat",
"type": "n.",
"definition": "A short, sleeveless coat or garment for men, worn under\n the coat, extending no lower than the hips, and covering the waist; a\n vest."
},
{
"word": "Waistcoat",
"type": "n.",
"definition": "A garment occasionally worn by women as a part of\n fashionable costume."
},
{
"word": "Waistcoateer",
"type": "n.",
"definition": "One wearing a waistcoat; esp., a woman wearing one\n uncovered, or thought fit for such a habit; hence, a loose woman;\n strumpet."
},
{
"word": "Waistcoating",
"type": "n.",
"definition": "A fabric designed for waistcoats; esp., one in which\n there is a pattern, differently colored yarns being used."
},
{
"word": "Waister",
"type": "n.",
"definition": "A seaman, usually a green hand or a broken-down man,\n stationed in the waist of a vessel of war."
},
{
"word": "Waited",
"type": "imp. & p. p.",
"definition": "of Wait"
},
{
"word": "Waiting",
"type": "p. pr. & vb. n.",
"definition": "of Wait"
},
{
"word": "Wait",
"type": "v. i.",
"definition": "To watch; to observe; to take notice."
},
{
"word": "Wait",
"type": "v. i.",
"definition": "To stay or rest in expectation; to stop or remain\n stationary till the arrival of some person or event; to rest in\n patience; to stay; not to depart."
},
{
"word": "Wait",
"type": "v. t.",
"definition": "To stay for; to rest or remain stationary in expectation\n of; to await; as, to wait orders."
},
{
"word": "Wait",
"type": "v. t.",
"definition": "To attend as a consequence; to follow upon; to accompany;\n to await."
},
{
"word": "Wait",
"type": "v. t.",
"definition": "To attend on; to accompany; especially, to attend with\n ceremony or respect."
},
{
"word": "Wait",
"type": "v. t.",
"definition": "To cause to wait; to defer; to postpone; -- said of a\n meal; as, to wait dinner."
},
{
"word": "Wait",
"type": "v. i.",
"definition": "The act of waiting; a delay; a halt."
},
{
"word": "Wait",
"type": "v. i.",
"definition": "Ambush."
},
{
"word": "Wait",
"type": "v. i.",
"definition": "One who watches; a watchman."
},
{
"word": "Wait",
"type": "v. i.",
"definition": "Hautboys, or oboes, played by town musicians; not used in\n the singular."
},
{
"word": "Wait",
"type": "v. i.",
"definition": "Musicians who sing or play at night or in the early\n morning, especially at Christmas time; serenaders; musical watchmen."
},
{
"word": "Waiter",
"type": "n.",
"definition": "One who, or that which, waits; an attendant; a servant in\n attendance, esp. at table."
},
{
"word": "Waiter",
"type": "n.",
"definition": "A vessel or tray on which something is carried, as dishes,\n etc.; a salver."
},
{
"word": "Waiting",
"type": "",
"definition": "a. & n. from Wait, v."