-
Notifications
You must be signed in to change notification settings - Fork 2
/
z.json
2067 lines (2067 loc) · 66.4 KB
/
z.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": "Za",
"type": "n.",
"definition": "An old solfeggio name for B flat; the seventh harmonic, as\n heard in the or aeolian string; -- so called by Tartini. It was long\n considered a false, but is the true note of the chord of the flat\n seventh."
},
{
"word": "Zabaism",
"type": "n.",
"definition": "Alt. of Zabism"
},
{
"word": "Zabism",
"type": "n.",
"definition": "See Sabianism."
},
{
"word": "Zabian",
"type": "a. & n.",
"definition": "See Sabian."
},
{
"word": "Zacco",
"type": "n.",
"definition": "See Zocco."
},
{
"word": "Zachun",
"type": "n.",
"definition": "An oil pressed by the Arabs from the fruit of a small\n thorny tree (Balanites Aegyptiaca), and sold to piligrims for a healing\n ointment."
},
{
"word": "Zaerthe",
"type": "n.",
"definition": "Same as Z\/rthe."
},
{
"word": "Zaffer",
"type": "n.",
"definition": "A pigment obtained, usually by roasting cobalt glance with\n sand or quartz, as a dark earthy powder. It consists of crude cobalt\n oxide, or of an impure cobalt arseniate. It is used in porcelain\n painting, and in enameling pottery, to produce a blue color, and is\n often confounded with smalt, from which, however, it is distinct, as it\n contains no potash. The name is often loosely applied to mixtures of\n zaffer proper with silica, or oxides of iron, manganese, etc."
},
{
"word": "Zaim",
"type": "n.",
"definition": "A Turkish chief who supports a mounted militia bearing the\n same name."
},
{
"word": "Zaimet",
"type": "n.",
"definition": "A district from which a Zaim draws his revenue."
},
{
"word": "Zain",
"type": "n.",
"definition": "A horse of a dark color, neither gray nor white, and having\n no spots."
},
{
"word": "Zalambdodont",
"type": "a.",
"definition": "Of or pertaining to a tribe (Zalambdodonta) of\n Insectivora in which the molar teeth have but one V-shaped ridge."
},
{
"word": "Zalambdodont",
"type": "n.",
"definition": "One of the Zalambdodonta. The tenrec, solenodon, and\n golden moles are examples."
},
{
"word": "Zamang",
"type": "n.",
"definition": "An immense leguminous tree (Pithecolobium Saman) of\n Venezuela. Its branches form a hemispherical mass, often one hundred\n and eighty feet across. The sweet pulpy pods are used commonly for\n feeding cattle. Also called rain tree."
},
{
"word": "Zambos",
"type": "pl. ",
"definition": "of Zambo"
},
{
"word": "Zambo",
"type": "n.",
"definition": "The child of a mulatto and a negro; also, the child of an\n Indian and a negro; colloquially or humorously, a negro; a sambo."
},
{
"word": "Zamia",
"type": "n.",
"definition": "A genus of cycadaceous plants, having the appearance of low\n palms, but with exogenous wood. See Coontie, and Illust. of Strobile."
},
{
"word": "Zamindar",
"type": "n.",
"definition": "A landowner; also, a collector of land revenue; now,\n usually, a kind of feudatory recognized as an actual proprietor so long\n as he pays to the government a certain fixed revenue."
},
{
"word": "Zamindary",
"type": "n.",
"definition": "Alt. of Zamindari"
},
{
"word": "Zamindari",
"type": "n.",
"definition": "The jurisdiction of a zamindar; the land possessed by a\n zamindar."
},
{
"word": "Zamite",
"type": "n.",
"definition": "A fossil cycad of the genus Zamia."
},
{
"word": "Zamouse",
"type": "n.",
"definition": "A West African buffalo (Bubalus brachyceros) having short\n horns depressed at the base, and large ears fringed internally with\n three rows of long hairs. It is destitute of a dewlap. Called also\n short-horned buffalo, and bush cow."
},
{
"word": "Zampogna",
"type": "n.",
"definition": "A sort of bagpipe formerly in use among Italian peasants.\n It is now almost obsolete."
},
{
"word": "Zander",
"type": "n.",
"definition": "A European pike perch (Stizostedion lucioperca) allied to\n the wall-eye; -- called also sandari, sander, sannat, schill, and zant."
},
{
"word": "Zandmole",
"type": "n.",
"definition": "The sand mole."
},
{
"word": "Zante",
"type": "n.",
"definition": "See Zantewood."
},
{
"word": "Zante currant",
"type": "",
"definition": "A kind of seedless grape or raisin; -- so called from\n Zante, one of the Ionian Islands."
},
{
"word": "Zantewood",
"type": "n.",
"definition": "A yellow dyewood; fustet; -- called also zante, and\n zante fustic. See Fustet, and the Note under Fustic."
},
{
"word": "Zantewood",
"type": "n.",
"definition": "Satinwood (Chloroxylon Swietenia)."
},
{
"word": "Zantiot",
"type": "n.",
"definition": "A native or inhabitant of Zante, one of the Ionian\n Islands."
},
{
"word": "Zanies",
"type": "pl. ",
"definition": "of Zany"
},
{
"word": "Zany",
"type": "n.",
"definition": "A merry-andrew; a buffoon."
},
{
"word": "Zany",
"type": "v. t.",
"definition": "To mimic."
},
{
"word": "Zanyism",
"type": "n.",
"definition": "State or character of a zany; buffoonery."
},
{
"word": "Zaphara",
"type": "n.",
"definition": "Zaffer."
},
{
"word": "Zaphrentis",
"type": "n.",
"definition": "An extinct genus of cyathophylloid corals common in the\n Paleozoic formations. It is cup-shaped with numerous septa, and with a\n deep pit in one side of the cup."
},
{
"word": "Zapotilla",
"type": "n.",
"definition": "See Sapodilla."
},
{
"word": "Zaptiah",
"type": "n.",
"definition": "A Turkish policeman."
},
{
"word": "Zarathustrian",
"type": "a.",
"definition": "Alt. of Zarathustric"
},
{
"word": "Zarathustric",
"type": "a.",
"definition": "Of or pertaining to Zarathustra, or Zoroaster;\n Zoroastrian."
},
{
"word": "Zarathustrism",
"type": "n.",
"definition": "See Zoroastrianism."
},
{
"word": "Zaratite",
"type": "n.",
"definition": "A hydrous carbonate of nickel occurring as an\n emerald-green incrustation on chromite; -- called also emerald nickel."
},
{
"word": "Zareba",
"type": "n.",
"definition": "An improvised stockade; especially, one made of thorn\n bushes, etc."
},
{
"word": "Zarnich",
"type": "n.",
"definition": "Native sulphide of arsenic, including sandarach, or\n realgar, and orpiment."
},
{
"word": "Zarthe",
"type": "n.",
"definition": "A European bream (Abramis vimba)."
},
{
"word": "Zati",
"type": "n.",
"definition": "A species of macaque (Macacus pileatus) native of India and\n Ceylon. It has a crown of long erect hair, and tuft of radiating hairs\n on the back of the head. Called also capped macaque."
},
{
"word": "Zauschneria",
"type": "n.",
"definition": "A genus of flowering plants. Zauschneria Californica\n is a suffrutescent perennial, with showy red flowers much resembling\n those of the garden fuchsia."
},
{
"word": "Zax",
"type": "n.",
"definition": "A tool for trimming and puncturing roofing slates."
},
{
"word": "Zayat",
"type": "n.",
"definition": "A public shed, or portico, for travelers, worshipers, etc."
},
{
"word": "Zea",
"type": "n.",
"definition": "A genus of large grasses of which the Indian corn (Zea Mays)\n is the only species known. Its origin is not yet ascertained. See\n Maize."
},
{
"word": "Zeal",
"type": "n.",
"definition": "Passionate ardor in the pursuit of anything; eagerness in\n favor of a person or cause; ardent and active interest; engagedness;\n enthusiasm; fervor."
},
{
"word": "Zeal",
"type": "n.",
"definition": "A zealot."
},
{
"word": "Zeal",
"type": "v. i.",
"definition": "To be zealous."
},
{
"word": "Zealant",
"type": "n.",
"definition": "One who is zealous; a zealot; an enthusiast."
},
{
"word": "Zealed",
"type": "a.",
"definition": "Full of zeal; characterized by zeal."
},
{
"word": "Zealful",
"type": "a.",
"definition": "Full of zeal."
},
{
"word": "Zealless",
"type": "a.",
"definition": "Wanting zeal."
},
{
"word": "Zealot",
"type": "n.",
"definition": "One who is zealous; one who engages warmly in any cause,\n and pursues his object with earnestness and ardor; especially, one who\n is overzealous, or carried away by his zeal; one absorbed in devotion\n to anything; an enthusiast; a fanatical partisan."
},
{
"word": "Zealotical",
"type": "a.",
"definition": "Like, or suitable to, a zealot; ardently zealous."
},
{
"word": "Zealotism",
"type": "n.",
"definition": "The character or conduct of a zealot; zealotry."
},
{
"word": "Zealotist",
"type": "n.",
"definition": "A zealot."
},
{
"word": "Zealotry",
"type": "n.",
"definition": "The character and behavior of a zealot; excess of zeal;\n fanatical devotion to a cause."
},
{
"word": "Zealous",
"type": "a.",
"definition": "Filled with, or characterized by, zeal; warmly engaged, or\n ardent, in behalf of an object."
},
{
"word": "Zealous",
"type": "a.",
"definition": "Filled with religious zeal."
},
{
"word": "Zebec",
"type": "n.",
"definition": "See Xebec."
},
{
"word": "Zebra",
"type": "n.",
"definition": "Either one of two species of South African wild horses\n remarkable for having the body white or yellowish white, and\n conspicuously marked with dark brown or brackish bands."
},
{
"word": "Zebrawood",
"type": "n.",
"definition": "A kind of cabinet wood having beautiful black, brown,\n and whitish stripes, the timber of a tropical American tree (Connarus\n Guianensis)."
},
{
"word": "Zebrawood",
"type": "n.",
"definition": "The wood of a small West Indian myrtaceous tree (Eugenia\n fragrans)."
},
{
"word": "Zebrawood",
"type": "n.",
"definition": "The wood of an East Indian tree of the genus Guettarda."
},
{
"word": "Zebrine",
"type": "a.",
"definition": "Pertaining to, or resembling, the zebra."
},
{
"word": "Zebu",
"type": "n.",
"definition": "A bovine mammal (Ros Indicus) extensively domesticated in\n India, China, the East Indies, and East Africa. It usually has short\n horns, large pendulous ears, slender legs, a large dewlap, and a large,\n prominent hump over the shoulders; but these characters vary in\n different domestic breeds, which range in size from that of the common\n ox to that of a large mastiff."
},
{
"word": "Zebub",
"type": "n.",
"definition": "A large noxious fly of Abyssinia, which like the tsetse fly,\n is destructive to cattle."
},
{
"word": "Zechin",
"type": "n.",
"definition": "See Sequin."
},
{
"word": "Zechstein",
"type": "n.",
"definition": "The upper division of the Permian (Dyas) of Europe. The\n prevailing rock is a magnesian limestone."
},
{
"word": "Zed",
"type": "n.",
"definition": "The letter Z; -- called also zee, and formerly izzard."
},
{
"word": "Zedoary",
"type": "n.",
"definition": "A medicinal substance obtained in the East Indies, having\n a fragrant smell, and a warm, bitter, aromatic taste. It is used in\n medicine as a stimulant."
},
{
"word": "Zeekoe",
"type": "n.",
"definition": "A hippopotamus."
},
{
"word": "Zehner",
"type": "n.",
"definition": "An Austrian silver coin equal to ten kreutzers, or about\n five cents."
},
{
"word": "Zein",
"type": "n.",
"definition": "A nitrogenous substance of the nature of gluten, obtained\n from the seeds of Indian corn (Zea) as a soft, yellowish, amorphous\n substance."
},
{
"word": "Zemindar",
"type": "n.",
"definition": "Same as Zamindar."
},
{
"word": "Zemindary",
"type": "n.",
"definition": "Alt. of Zemindari"
},
{
"word": "Zemindari",
"type": "n.",
"definition": "Same as Zamindary."
},
{
"word": "Zemni",
"type": "n.",
"definition": "The blind mole rat (Spalax typhlus), native of Eastern\n Europe and Asia. Its eyes and ears are rudimentary, and its fur is soft\n and brownish, more or less tinged with gray. It constructs extensive\n burrows."
},
{
"word": "Zenana",
"type": "n.",
"definition": "The part of a dwelling appropriated to women."
},
{
"word": "Zend",
"type": "n.",
"definition": "Properly, the translation and exposition in the Huzv\/resh, or\n literary Pehlevi, language, of the Avesta, the Zoroastrian sacred\n writings; as commonly used, the language (an ancient Persian dialect)\n in which the Avesta is written."
},
{
"word": "Zend-Avesta",
"type": "n.",
"definition": "The sacred writings of the ancient Persian religion,\n attributed to Zoroaster, but chiefly of a later date."
},
{
"word": "Zendik",
"type": "n.",
"definition": "An atheist or unbeliever; -- name given in the East to\n those charged with disbelief of any revealed religion, or accused of\n magical heresies."
},
{
"word": "Zenick",
"type": "n.",
"definition": "A South African burrowing mammal (Suricata tetradactyla),\n allied to the civets. It is grayish brown, with yellowish transverse\n stripes on the back. Called also suricat."
},
{
"word": "Zenik",
"type": "n.",
"definition": "See Zenick."
},
{
"word": "Zenith",
"type": "n.",
"definition": "That point in the visible celestial hemisphere which is\n vertical to the spectator; the point of the heavens directly overhead;\n -- opposed to nadir."
},
{
"word": "Zenith",
"type": "n.",
"definition": "hence, figuratively, the point of culmination; the greatest\n height; the height of success or prosperity."
},
{
"word": "Zenithal",
"type": "a.",
"definition": "Of or pertaining to the zenith."
},
{
"word": "Zeolite",
"type": "n.",
"definition": "A term now used to designate any one of a family of\n minerals, hydrous silicates of alumina, with lime, soda, potash, or\n rarely baryta. Here are included natrolite, stilbite, analcime,\n chabazite, thomsonite, heulandite, and others. These species occur of\n secondary origin in the cavities of amygdaloid, basalt, and lava, also,\n less frequently, in granite and gneiss. So called because many of these\n species intumesce before the blowpipe."
},
{
"word": "Zeolitic",
"type": "a.",
"definition": "Of or pertaining to a zeolite; consisting of, or\n resembling, a zeolite."
},
{
"word": "Zeolitiform",
"type": "a.",
"definition": "Having the form of a zeolite."
},
{
"word": "Zephyr",
"type": "n.",
"definition": "The west wind; poetically, any soft, gentle breeze."
},
{
"word": "Zephyrus",
"type": "n.",
"definition": "The west wind, or zephyr; -- usually personified, and\n made the most mild and gentle of all the sylvan deities."
},
{
"word": "Zequin",
"type": "n.",
"definition": "See Sequin."
},
{
"word": "Zerda",
"type": "n.",
"definition": "The fennec."
},
{
"word": "Zeriba",
"type": "n.",
"definition": "Same as Zareba."
},
{
"word": "Zeros",
"type": "pl. ",
"definition": "of Zero"
},
{
"word": "Zeroes",
"type": "pl. ",
"definition": "of Zero"
},
{
"word": "Zero",
"type": "n.",
"definition": "A cipher; nothing; naught."
},
{
"word": "Zero",
"type": "n.",
"definition": "The point from which the graduation of a scale, as of a\n thermometer, commences."
},
{
"word": "Zero",
"type": "n.",
"definition": "Fig.: The lowest point; the point of exhaustion; as, his\n patience had nearly reached zero."
},
{
"word": "Zest",
"type": "n.",
"definition": "A piece of orange or lemon peel, or the aromatic oil which\n may be squeezed from such peel, used to give flavor to liquor, etc."
},
{
"word": "Zest",
"type": "n.",
"definition": "Hence, something that gives or enhances a pleasant taste, or\n the taste itself; an appetizer; also, keen enjoyment; relish; gusto."
},
{
"word": "Zest",
"type": "n.",
"definition": "The woody, thick skin inclosing the kernel of a walnut."
},
{
"word": "Zested",
"type": "imp. & p. p.",
"definition": "of Zest"
},
{
"word": "Zesting",
"type": "p. pr. & vb. n.",
"definition": "of Zest"
},
{
"word": "Zest",
"type": "v. t.",
"definition": "To cut into thin slips, as the peel of an orange, lemon,\n etc.; to squeeze, as peel, over the surface of anything."
},
{
"word": "Zest",
"type": "v. t.",
"definition": "To give a relish or flavor to; to heighten the taste or\n relish of; as, to zest wine."
},
{
"word": "Zeta",
"type": "n.",
"definition": "A Greek letter corresponding to our z."
},
{
"word": "Zetetic",
"type": "a.",
"definition": "Seeking; proceeding by inquiry."
},
{
"word": "Zetetic",
"type": "n.",
"definition": "A seeker; -- a name adopted by some of the Pyrrhonists."
},
{
"word": "Zetetics",
"type": "a.",
"definition": "A branch of algebra which relates to the direct search\n for unknown quantities."
},
{
"word": "Zeuglodon",
"type": "n.",
"definition": "A genus of extinct Eocene whales, remains of which have\n been found in the Gulf States. The species had very long and slender\n bodies and broad serrated teeth. See Phocodontia."
},
{
"word": "Zeuglodont",
"type": "",
"definition": "Any species of Zeuglodonta."
},
{
"word": "Zeuglodonta",
"type": "n. pl.",
"definition": "Same as Phocodontia."
},
{
"word": "Zeugma",
"type": "n.",
"definition": "A figure by which an adjective or verb, which agrees with a\n nearer word, is, by way of supplement, referred also to another more\n remote; as, \"hic illius arma, hic currus fuit;\" where fuit, which\n agrees directly with currus, is referred also to arma."
},
{
"word": "Zeugmatic",
"type": "a.",
"definition": "Of or pertaining to zeugma; characterized by zeugma."
},
{
"word": "Zeugobranchiata",
"type": "n. pl.",
"definition": "Same as Zygobranchia."
},
{
"word": "Zeus",
"type": "n.",
"definition": "The chief deity of the Greeks, and ruler of the upper world\n (cf. Hades). He was identified with Jupiter."
},
{
"word": "Zeuzerian",
"type": "n.",
"definition": "Any one of a group of bombycid moths of which the genus\n Zeuzera is the type. Some of these moths are of large size. The goat\n moth is an example."
},
{
"word": "Zeylanite",
"type": "n.",
"definition": "See Ceylanite."
},
{
"word": "Zibet",
"type": "n.",
"definition": "Alt. of Zibeth"
},
{
"word": "Zibeth",
"type": "n.",
"definition": "A carnivorous mammal (Viverra zibetha) closely allied to\n the civet, from which it differs in having the spots on the body less\n distinct, the throat whiter, and the black rings on the tail more\n numerous."
},
{
"word": "Ziega",
"type": "n.",
"definition": "Curd produced from milk by adding acetic acid, after rennet\n has ceased to cause coagulation."
},
{
"word": "Zietrisikite",
"type": "n.",
"definition": "A mineral wax, vert similar to ozocerite. It is found\n at Zietrisika, Moldavia, whence its name."
},
{
"word": "Zif",
"type": "n.",
"definition": "The second month of the Jewish ecclesiastical year,\n corresponding to our May."
},
{
"word": "Zigger",
"type": "v. i.",
"definition": "Alt. of Zighyr"
},
{
"word": "Zighyr",
"type": "v. i.",
"definition": "Same as Sicker."
},
{
"word": "Zigzag",
"type": "n.",
"definition": "Something that has short turns or angles."
},
{
"word": "Zigzag",
"type": "n.",
"definition": "A molding running in a zigzag line; a chevron, or series of\n chevrons. See Illust. of Chevron, 3."
},
{
"word": "Zigzag",
"type": "n.",
"definition": "See Boyau."
},
{
"word": "Zigzag",
"type": "a.",
"definition": "Having short, sharp turns; running this way and that in an\n onward course."
},
{
"word": "Zigzagged",
"type": "imp. & p. p.",
"definition": "of Zigzag"
},
{
"word": "Zigzagging",
"type": "p. pr. & vb. n.",
"definition": "of Zigzag"
},
{
"word": "Zigzag",
"type": "v. t.",
"definition": "To form with short turns."
},
{
"word": "Zigzag",
"type": "v. i.",
"definition": "To move in a zigzag manner; also, to have a zigzag\n shape."
},
{
"word": "Zigzaggery",
"type": "n.",
"definition": "The quality or state of being zigzag; crookedness."
},
{
"word": "Zigzaggy",
"type": "a.",
"definition": "Having sharp turns."
},
{
"word": "Zilla",
"type": "n.",
"definition": "A low, thorny, suffrutescent, crucifeous plant (Zilla\n myagroides) found in the deserts of Egypt. Its leaves are boiled in\n water, and eaten, by the Arabs."
},
{
"word": "Zillah",
"type": "n.",
"definition": "A district or local division, as of a province."
},
{
"word": "Zimb",
"type": "n.",
"definition": "A large, venomous, two-winged fly, native of Abyssinia. It is\n allied to the tsetse fly, and, like the latter, is destructive to\n cattle."
},
{
"word": "Ziment-water",
"type": "n.",
"definition": "A kind of water found in copper mines; water\n impregnated with copper."
},
{
"word": "Zinc",
"type": "n.",
"definition": "An abundant element of the magnesium-cadmium group, extracted\n principally from the minerals zinc blende, smithsonite, calamine, and\n franklinite, as an easily fusible bluish white metal, which is\n malleable, especially when heated. It is not easily oxidized in moist\n air, and hence is used for sheeting, coating galvanized iron, etc. It\n is used in making brass, britannia, and other alloys, and is also\n largely consumed in electric batteries. Symbol Zn. Atomic weight 64.9."
},
{
"word": "Zincked",
"type": "imp. & p. p.",
"definition": "of Zinc"
},
{
"word": "Zinced",
"type": "",
"definition": "of Zinc"
},
{
"word": "Zincking",
"type": "p. pr. & vb. n.",
"definition": "of Zinc"
},
{
"word": "Zincing",
"type": "",
"definition": "of Zinc"
},
{
"word": "Zinc",
"type": "v. t.",
"definition": "To coat with zinc; to galvanize."
},
{
"word": "Zincane",
"type": "n.",
"definition": "Zinc chloride."
},
{
"word": "Zincic",
"type": "a.",
"definition": "Pertaining to, containing, or resembling, zinc; zincous."
},
{
"word": "Zincide",
"type": "n.",
"definition": "A binary compound of zinc."
},
{
"word": "Zinciferous",
"type": "a.",
"definition": "Containing or affording zinc."
},
{
"word": "Zincification",
"type": "n.",
"definition": "The act or process of applying zinc; the condition\n of being zincified, or covered with zinc; galvanization."
},
{
"word": "Zincify",
"type": "v. t.",
"definition": "To coat or impregnate with zinc."
},
{
"word": "Zincite",
"type": "n.",
"definition": "Native zinc oxide; a brittle, translucent mineral, of an\n orange-red color; -- called also red zinc ore, and red oxide of zinc."
},
{
"word": "Zincking",
"type": "n.",
"definition": "Alt. of Zincing"
},
{
"word": "Zincing",
"type": "n.",
"definition": "The act or process of applying zinc; galvanization."
},
{
"word": "Zincky",
"type": "a.",
"definition": "Pertaining to zinc, or having its appearance."
},
{
"word": "Zinco-",
"type": "",
"definition": "A combining form from zinc; in chemistry, designating zinc as\n an element of certain double compounds. Also used adjectively."
},
{
"word": "Zincode",
"type": "n.",
"definition": "The positive electrode of an electrolytic cell; anode."
},
{
"word": "Zincographer",
"type": "n.",
"definition": "An engraver on zinc."
},
{
"word": "Zincongraphic",
"type": "a.",
"definition": "Alt. of Zincongraphical"
},
{
"word": "Zincongraphical",
"type": "a.",
"definition": "Of or pertaining to zincography; as, zincographic\n processes."
},
{
"word": "Zincography",
"type": "n.",
"definition": "The art or process of engraving or etching on zinc, in\n which the design is left in relief in the style of a wood cut, the rest\n of the ground being eaten away by acid."
},
{
"word": "Zincoid",
"type": "a.",
"definition": "Pertaining to, or resembling, zinc; -- said of the\n electricity of the zincous plate in connection with a copper plate in a\n voltaic circle; also, designating the positive pole."
},
{
"word": "Zinco-polar",
"type": "a.",
"definition": "Electrically polarized like the surface of the zinc\n presented to the acid in a battery, which has zincous affinity."
},
{
"word": "Zincous",
"type": "a.",
"definition": "Of, pertaining to, or containing, zinc; zincic; as,\n zincous salts."
},
{
"word": "Zincous",
"type": "a.",
"definition": "Hence, formerly, basic, basylous, as opposed to chlorous."
},
{
"word": "Zincous",
"type": "a.",
"definition": "Of or pertaining to the positive pole of a galvanic\n battery; electro-positive."
},
{
"word": "Zingari",
"type": "pl. ",
"definition": "of Zingaro"
},
{
"word": "Zingaro",
"type": "n.",
"definition": "A gypsy."
},
{
"word": "Zingel",
"type": "n.",
"definition": "A small, edible, freshwater European perch (Aspro zingel),\n having a round, elongated body and prominent snout."
},
{
"word": "Zingiberaceous",
"type": "a.",
"definition": "Of or pertaining to ginger, or to a tribe\n (Zingibereae) of endogenous plants of the order Scitamineae. See\n Scitamineous."
},
{
"word": "Zink",
"type": "n.",
"definition": "See Zinc."
},
{
"word": "Zinkenite",
"type": "n.",
"definition": "A steel-gray metallic mineral, a sulphide of antimony\n and lead."
},
{
"word": "Zinky",
"type": "a.",
"definition": "See Zincky."
},
{
"word": "Zinnia",
"type": "n.",
"definition": "Any plant of the composite genus Zinnia, Mexican herbs with\n opposite leaves and large gay-colored blossoms. Zinnia elegans is the\n commonest species in cultivation."
},
{
"word": "Zinnwaldite",
"type": "n.",
"definition": "A kind of mica containing lithium, often associated\n with tin ore."
},
{
"word": "Zinsang",
"type": "n.",
"definition": "The delundung."
},
{
"word": "Zinziberaceous",
"type": "a.",
"definition": "Same as Zingiberaceous."
},
{
"word": "Zion",
"type": "n.",
"definition": "A hill in Jerusalem, which, after the capture of that city by\n the Israelites, became the royal residence of David and his successors."
},
{
"word": "Zion",
"type": "n.",
"definition": "Hence, the theocracy, or church of God."
},
{
"word": "Zion",
"type": "n.",
"definition": "The heavenly Jerusalem; heaven."
},
{
"word": "Ziphioid",
"type": "n.",
"definition": "See Xiphioid."
},
{
"word": "Zirco-",
"type": "",
"definition": "A combining form (also used adjectively) designating\n zirconium as an element of certain double compounds; zircono-; as in\n zircofluoric acid, sodium zircofluoride."
},
{
"word": "Zircofluoride",
"type": "n.",
"definition": "A double fluoride of zirconium and hydrogen, or some\n other positive element or radical; as, zircofluoride of sodium."
},
{
"word": "Zircon",
"type": "n.",
"definition": "A mineral occurring in tetragonal crystals, usually of a\n brown or gray color. It consists of silica and zirconia. A red variety,\n used as a gem, is called hyacinth. Colorless, pale-yellow or\n smoky-brown varieties from Ceylon are called jargon."
},
{
"word": "Zircona",
"type": "n.",
"definition": "Zirconia."
},
{
"word": "Zirconate",
"type": "n.",
"definition": "A salt of zirconic acid."
},
{
"word": "Zirconia",
"type": "n.",
"definition": "The oxide of zirconium, obtained as a white powder, and\n possessing both acid and basic properties. On account of its\n infusibility, and brilliant luminosity when incandescent, it is used as\n an ingredient of sticks for the Drummomd light."
},
{
"word": "Zirconic",
"type": "a.",
"definition": "Pertaining to, containing, or resembling, zirconium; as,\n zirconic oxide; zirconic compounds."
},
{
"word": "Zirconium",
"type": "n.",
"definition": "A rare element of the carbon-silicon group, intermediate\n between the metals and nonmetals, obtained from the mineral zircon as a\n dark sooty powder, or as a gray metallic crystalline substance. Symbol\n Zr. Atomic weight, 90.4."
},
{
"word": "Zircono",
"type": "",
"definition": "See Zirco-."
},
{
"word": "Zirconoid",
"type": "n.",
"definition": "A double eight-sided pyramid, a form common with\n tetragonal crystals; -- so called because this form often occurs in\n crystals of zircon."
},
{
"word": "Zither",
"type": "n.",
"definition": "An instrument of music used in Austria and Germany. It has\n from thirty to forty wires strung across a shallow sounding-board,\n which lies horizontally on a table before the performer, who uses both\n hands in playing on it. [Not to be confounded with the old lute-shaped\n cittern, or cithern.]"
},
{
"word": "Zittern",
"type": "n.",
"definition": "See Cittern."